home *** CD-ROM | disk | FTP | other *** search
Text File | 1988-03-05 | 550 b | 33 lines | [TEXT/TPAS] |
- program xfcntemplate;
-
- { change the name of the program to the name you want for the XFCN }
- {Remember to change the resource ID to a unique value after compiling}
-
- {$R-}
- {$U-}
- {$D XFCN}
-
- USES Memtypes,HyperXCmd;
-
- PROCEDURE PasXFCN(paramPtr: XCmdPtr);
-
- { this is the procedure that will be executed. the name must be PasXFCN }
-
- {$I XCmdGlue.inc}
-
- BEGIN
-
- { put your code here. don't forget to return a value }
-
- END;
-
- { the BEGIN/END following this comment are a null program. don't delete it.
- it is required by Turbo. }
-
- BEGIN
- END.
-
-
-
-
-